home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ For TASM / HEAP.PAK / MAKEFILE < prev    next >
Text File  |  1996-02-21  |  698b  |  27 lines

  1. #       Make file for the HEAP Object Oriented Programming Example
  2. #       Copyright (c) 1993 by Borland International, Inc.
  3. #
  4. #       make -B              To build memtest.exe
  5. #       make -B -DDEBUG      To build the debug version of memtest.exe
  6.  
  7. !if $d(DEBUG)
  8. ASMDEBUG=/zi
  9. LINKDEBUG=/v
  10. !else
  11. ASMDEBUG=
  12. LINKDEBUG=
  13. !endif
  14.  
  15. memtest.exe : mem.obj memtest.obj display.obj
  16.    tlink $(LINKDEBUG) memtest+mem+display
  17.  
  18. mem.obj : mem.asm vmtutil.inc mem.inc
  19.    tasm /c $(ASMDEBUG) /m /DMDL=small mem.asm
  20.  
  21. memtest.obj : memtest.asm vmtutil.inc mem.inc
  22.    tasm /c $(ASMDEBUG) /m /DMDL=small memtest.asm
  23.  
  24. display.obj : display.asm
  25.    tasm /c $(ASMDEBUG) /m /DMDL=small display.asm
  26.  
  27.